home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-22 | 520 b | 20 lines | [TEXT/MSWD] |
- list-inversion inversion-list symbol-list
-
- simply a mapping of symbol-inversion where
- inversion-list can be both symbols or integers.
-
- in the first ex. inverts first symbol 'd around
- first in inversion-list 'a then second symbol
- around second in inversion-list and so on. . .
-
- (list-inversion '(a b c) '(d f g f f g h))
- -->(-D -D -C -F -D -C -H)
-
- (list-inversion '(4 3 1 5) '(d f g f f g h))
- -->(F B -E F D A -F)
-
- (list-inversion '(4 3 1 5)
- (symbol-divide '(2 3) nil nil '(d f g f f g h)))
- -->((F D) (A B B) (-E -F))
-
-